home *** CD-ROM | disk | FTP | other *** search
/ IRIX Base Documentation 2002 November / SGI IRIX Base Documentation 2002 November.iso / usr / share / catman / p_man / cat3 / SCSL / cpbtrf.z / cpbtrf
Encoding:
Text File  |  2002-10-03  |  4.6 KB  |  133 lines

  1.  
  2.  
  3.  
  4. CCCCPPPPBBBBTTTTRRRRFFFF((((3333SSSS))))                                                          CCCCPPPPBBBBTTTTRRRRFFFF((((3333SSSS))))
  5.  
  6.  
  7.  
  8. NNNNAAAAMMMMEEEE
  9.      CPBTRF - compute the Cholesky factorization of a complex Hermitian
  10.      positive definite band matrix A
  11.  
  12. SSSSYYYYNNNNOOOOPPPPSSSSIIIISSSS
  13.      SUBROUTINE CPBTRF( UPLO, N, KD, AB, LDAB, INFO )
  14.  
  15.          CHARACTER      UPLO
  16.  
  17.          INTEGER        INFO, KD, LDAB, N
  18.  
  19.          COMPLEX        AB( LDAB, * )
  20.  
  21. IIIIMMMMPPPPLLLLEEEEMMMMEEEENNNNTTTTAAAATTTTIIIIOOOONNNN
  22.      These routines are part of the SCSL Scientific Library and can be loaded
  23.      using either the -lscs or the -lscs_mp option.  The -lscs_mp option
  24.      directs the linker to use the multi-processor version of the library.
  25.  
  26.      When linking to SCSL with -lscs or -lscs_mp, the default integer size is
  27.      4 bytes (32 bits). Another version of SCSL is available in which integers
  28.      are 8 bytes (64 bits).  This version allows the user access to larger
  29.      memory sizes and helps when porting legacy Cray codes.  It can be loaded
  30.      by using the -lscs_i8 option or the -lscs_i8_mp option. A program may use
  31.      only one of the two versions; 4-byte integer and 8-byte integer library
  32.      calls cannot be mixed.
  33.  
  34. PPPPUUUURRRRPPPPOOOOSSSSEEEE
  35.      CPBTRF computes the Cholesky factorization of a complex Hermitian
  36.      positive definite band matrix A. The factorization has the form
  37.         A = U**H * U,  if UPLO = 'U', or
  38.         A = L  * L**H,  if UPLO = 'L',
  39.      where U is an upper triangular matrix and L is lower triangular.
  40.  
  41.  
  42. AAAARRRRGGGGUUUUMMMMEEEENNNNTTTTSSSS
  43.      UPLO    (input) CHARACTER*1
  44.              = 'U':  Upper triangle of A is stored;
  45.              = 'L':  Lower triangle of A is stored.
  46.  
  47.      N       (input) INTEGER
  48.              The order of the matrix A.  N >= 0.
  49.  
  50.      KD      (input) INTEGER
  51.              The number of superdiagonals of the matrix A if UPLO = 'U', or
  52.              the number of subdiagonals if UPLO = 'L'.  KD >= 0.
  53.  
  54.      AB      (input/output) COMPLEX array, dimension (LDAB,N)
  55.              On entry, the upper or lower triangle of the Hermitian band
  56.              matrix A, stored in the first KD+1 rows of the array.  The j-th
  57.              column of A is stored in the j-th column of the array AB as
  58.              follows:  if UPLO = 'U', AB(kd+1+i-j,j) = A(i,j) for max(1,j-
  59.              kd)<=i<=j; if UPLO = 'L', AB(1+i-j,j)    = A(i,j) for
  60.  
  61.  
  62.  
  63.                                                                         PPPPaaaaggggeeee 1111
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70. CCCCPPPPBBBBTTTTRRRRFFFF((((3333SSSS))))                                                          CCCCPPPPBBBBTTTTRRRRFFFF((((3333SSSS))))
  71.  
  72.  
  73.  
  74.              j<=i<=min(n,j+kd).
  75.  
  76.              On exit, if INFO = 0, the triangular factor U or L from the
  77.              Cholesky factorization A = U**H*U or A = L*L**H of the band
  78.              matrix A, in the same storage format as A.
  79.  
  80.      LDAB    (input) INTEGER
  81.              The leading dimension of the array AB.  LDAB >= KD+1.
  82.  
  83.      INFO    (output) INTEGER
  84.              = 0:  successful exit
  85.              < 0:  if INFO = -i, the i-th argument had an illegal value
  86.              > 0:  if INFO = i, the leading minor of order i is not positive
  87.              definite, and the factorization could not be completed.
  88.  
  89. FFFFUUUURRRRTTTTHHHHEEEERRRR DDDDEEEETTTTAAAAIIIILLLLSSSS
  90.      The band storage scheme is illustrated by the following example, when N =
  91.      6, KD = 2, and UPLO = 'U':
  92.  
  93.      On entry:                       On exit:
  94.  
  95.          *    *   a13  a24  a35  a46      *    *   u13  u24  u35  u46
  96.          *   a12  a23  a34  a45  a56      *   u12  u23  u34  u45  u56
  97.         a11  a22  a33  a44  a55  a66     u11  u22  u33  u44  u55  u66
  98.  
  99.      Similarly, if UPLO = 'L' the format of A is as follows:
  100.  
  101.      On entry:                       On exit:
  102.  
  103.         a11  a22  a33  a44  a55  a66     l11  l22  l33  l44  l55  l66
  104.         a21  a32  a43  a54  a65   *      l21  l32  l43  l54  l65   *
  105.         a31  a42  a53  a64   *    *      l31  l42  l53  l64   *    *
  106.  
  107.      Array elements marked * are not used by the routine.
  108.  
  109.      Contributed by
  110.      Peter Mayes and Giuseppe Radicati, IBM ECSEC, Rome, March 23, 1989
  111.  
  112.  
  113. SSSSEEEEEEEE AAAALLLLSSSSOOOO
  114.      INTRO_LAPACK(3S), INTRO_SCSL(3S)
  115.  
  116.      This man page is available only online.
  117.  
  118.  
  119.  
  120.  
  121.  
  122.  
  123.  
  124.  
  125.  
  126.  
  127.  
  128.  
  129.                                                                         PPPPaaaaggggeeee 2222
  130.  
  131.  
  132.  
  133.